1
namespace Microsoft
.Pcp
.Pfx
.InteractiveFractal
6 /// Required designer variable.
8 private System
.ComponentModel
.IContainer components
= null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing
)
16 if (disposing
&& (components
!= null))
20 base.Dispose(disposing
);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.mandelbrotPb
= new System
.Windows
.Forms
.PictureBox();
32 this.statusStrip1
= new System
.Windows
.Forms
.StatusStrip();
33 this.toolStripStatusLabel1
= new System
.Windows
.Forms
.ToolStripStatusLabel();
34 ((System
.ComponentModel
.ISupportInitialize
)(this.mandelbrotPb
)).BeginInit();
35 this.statusStrip1
.SuspendLayout();
40 this.mandelbrotPb
.BackColor
= System
.Drawing
.Color
.Black
;
41 this.mandelbrotPb
.Dock
= System
.Windows
.Forms
.DockStyle
.Fill
;
42 this.mandelbrotPb
.Location
= new System
.Drawing
.Point(0, 0);
43 this.mandelbrotPb
.Margin
= new System
.Windows
.Forms
.Padding(4, 4, 4, 4);
44 this.mandelbrotPb
.Name
= "mandelbrotPb";
45 this.mandelbrotPb
.Size
= new System
.Drawing
.Size(521, 452);
46 this.mandelbrotPb
.SizeMode
= System
.Windows
.Forms
.PictureBoxSizeMode
.CenterImage
;
47 this.mandelbrotPb
.TabIndex
= 0;
48 this.mandelbrotPb
.TabStop
= false;
49 this.mandelbrotPb
.VisibleChanged
+= new System
.EventHandler(this.mandelbrotPb_VisibleChanged
);
50 this.mandelbrotPb
.MouseDoubleClick
+= new System
.Windows
.Forms
.MouseEventHandler(this.mandelbrotPb_MouseDoubleClick
);
51 this.mandelbrotPb
.MouseDown
+= new System
.Windows
.Forms
.MouseEventHandler(this.mandelbrotPb_MouseDown
);
52 this.mandelbrotPb
.MouseMove
+= new System
.Windows
.Forms
.MouseEventHandler(this.mandelbrotPb_MouseMove
);
53 this.mandelbrotPb
.MouseUp
+= new System
.Windows
.Forms
.MouseEventHandler(this.mandelbrotPb_MouseUp
);
54 this.mandelbrotPb
.Resize
+= new System
.EventHandler(this.mandelbrotPb_Resize
);
58 this.statusStrip1
.Items
.AddRange(new System
.Windows
.Forms
.ToolStripItem
[] {
59 this.toolStripStatusLabel1
});
60 this.statusStrip1
.Location
= new System
.Drawing
.Point(0, 427);
61 this.statusStrip1
.Name
= "statusStrip1";
62 this.statusStrip1
.Padding
= new System
.Windows
.Forms
.Padding(1, 0, 19, 0);
63 this.statusStrip1
.Size
= new System
.Drawing
.Size(521, 25);
64 this.statusStrip1
.TabIndex
= 2;
65 this.statusStrip1
.Text
= "statusStrip1";
67 // toolStripStatusLabel1
69 this.toolStripStatusLabel1
.Name
= "toolStripStatusLabel1";
70 this.toolStripStatusLabel1
.Size
= new System
.Drawing
.Size(386, 20);
71 this.toolStripStatusLabel1
.Text
= "P: parallel mode, S: sequential mode, Double-click: zoom";
75 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(8F
, 16F
);
76 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
77 this.ClientSize
= new System
.Drawing
.Size(521, 452);
78 this.Controls
.Add(this.statusStrip1
);
79 this.Controls
.Add(this.mandelbrotPb
);
80 this.Margin
= new System
.Windows
.Forms
.Padding(4, 4, 4, 4);
81 this.Name
= "MainForm";
82 this.Text
= "Mandelbrot Fractals";
83 ((System
.ComponentModel
.ISupportInitialize
)(this.mandelbrotPb
)).EndInit();
84 this.statusStrip1
.ResumeLayout(false);
85 this.statusStrip1
.PerformLayout();
86 this.ResumeLayout(false);
93 private System
.Windows
.Forms
.PictureBox mandelbrotPb
;
94 private System
.Windows
.Forms
.StatusStrip statusStrip1
;
95 private System
.Windows
.Forms
.ToolStripStatusLabel toolStripStatusLabel1
;